JQuery error: XML filter is applied to non-XML value (function (E, F) {return new (o.fn.init)(E, F);

Posted by morpheous on Stack Overflow See other posts from Stack Overflow or by morpheous
Published on 2010-04-26T06:34:05Z Indexed on 2010/04/26 6:43 UTC
Read the original article Hit count: 692

Filed under:
|

I am getting this slightly cryptic error message:

XML filter is applied to non-XML value (function (E, F) {return new (o.fn.init)(E, F);})

when I run this code snippet

function justDoIt(arg){
    msg = arg.msg;
    if(arg.ok)
        jQuery.(".action-button").each(function(idx,el){jQuery(this).removeClass('enabled');} );
}

arg is a JSON format response form the server.

Anyone knows how to fix this?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about JSON